home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_020 / porthandler / bcpl.i next >
Text File  |  1992-05-06  |  776b  |  45 lines

  1. BCALL    MACRO
  2.     MOVE.L    #FRAME_SIZE,D0
  3.     MOVE.L    \1(A2),A4
  4.     JSR    (A5)
  5.     ENDM
  6.  
  7. BEXIT    MACRO
  8.     JMP    (A6)
  9.     ENDM
  10.  
  11. SetIO        EQU    $18
  12. taskid        EQU    $38
  13. DoIO        EQU    $54
  14. SendIO        EQU    $58
  15. OpenDevice    EQU    $7C
  16. CloseDevice    EQU    $80
  17. taskwait    EQU    $A4
  18. returnpkt    EQU    $C4
  19. getlong        EQU    $1B8
  20. putlong        EQU    $1BC
  21.  
  22. act_locateobject    EQU    8
  23. act_renamedisk        EQU    9
  24. act_freelock        EQU    15
  25. act_deleteobject    EQU    16
  26. act_renameobject    EQU    17
  27. act_copydir        EQU    19
  28. act_waitchar        EQU    20
  29. act_setprotect        EQU    21
  30. act_createdir        EQU    22
  31. act_examineobject    EQU    23
  32. act_examinenext        EQU    24
  33. act_diskinfo        EQU    25
  34. act_setcomment        EQU    28
  35. act_parent        EQU    29
  36. act_inhibit        EQU    31
  37. act_read        EQU    'R'
  38. act_write        EQU    'W'
  39. act_queueread        EQU    1001
  40. act_queuewrite        EQU    1002
  41. act_findinput        EQU    1005
  42. act_findoutput        EQU    1006
  43. act_end            EQU    1007
  44. act_seek        EQU    1008
  45.